aboutsummaryrefslogtreecommitdiff
path: root/src/routes/f/[id].svelte
blob: d1fae4cff0ff45ed43e5045291c2524621d00e49 (plain)
1
2
3
4
5
6
7
8
9
<script>
  export async function load(ctx) {
    let id = ctx.page.params.id
    return { props: { id }}
  }
</script>

<h1>Forum Index.</h1>
<p>This component lists topics for forum with id: {id}</p>